Skorzystaj z wyszukiwarki lub indeksu alfabetycznego.
Przykłady: pci, /dev/null, functional unit, embedded system, pseudo-tty, nfs.
1 definition found
From The Free On-line Dictionary of Computing (05 January 2017) [foldoc]:
dotted pair
The usual LISP syntax for representing a {cons
cell} that is not a list. For example, the expression
(cons 'foo 42)
returns a cons cell that is output as
(foo . 42)
which represents a cons cell whose car is the symbol "foo" and
whose cdr is the integer 42.
(2014-11-09)